multifrequency monitor - определение. Что такое multifrequency monitor
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое multifrequency monitor - определение

PRIMITIVE OPERATING SYSTEM AND APPLICATION SOFTWARE
Machine language monitor; ML monitor; Debug Monitor; Machine-language monitor
  • [[Apple II]] [[6502]] machine code monitor
  • code disassembly]], as well as processor register and memory dumps

Teleprocessing monitor         
TP monitor; Tp monitor; Transaction monitor
A teleprocessing monitor (also, Transaction Processing Monitor or TP Monitor) is a control program that monitors the transfer of data between multiple local and remote terminals to ensure that the transaction processes completely or, if an error occurs, to take appropriate actions.Definition on bitpipe.
Monroe Monitor and Valley News         
NEWSPAPER PUBLISHED IN MONROE, WASHINGTON, USA
The Monroe Monitor; Draft:Monroe Monitor; Monroe Monitor
The Monroe Monitor and Valley News is a weekly newspaper published in Monroe, Washington, United States. It had an estimated circulation of 4,000 in 2013.
USS Monitor         
  • Engraving of [[Battle of Drewry's Bluff]]
  • 6}} in the background
  • John Ericsson, designer of the USS ''Monitor''
  • Commander Worden in 1862
  • Launch of ''Monitor'', 1862
  • url-status=live }}</ref>
  • adj=on}} [[Dahlgren gun]] mounted
  • Model of ''Monitor''
  • Virginia}}, 9 March 1862
  • [Top photo] picture of the ''Monitor''{{'}}s crew; [Bottom Picture] Lieutenant Jeffers, second commander of the ''Monitor'' four months after the fight at Hampton Roads in 1862
  • The USS ''Monitor'' Memorial at [[Arlington National Cemetery]] marks the grave of the two unknowns
  • Funeral of the Unknowns of the USS ''Monitor'' at Arlington National Cemetery (8 March 2013)
  • Transverse hull section through the turret
  • ''Monitor''{{'}}s anchor at the Mariners' Museum
  • Officers at right are (left to right): Third Assistant Engineer Robinson W. Hands, Acting Master [[Louis N. Stodder]], Second Assistant Engineer Albert B. Campbell and Acting Volunteer Lieutenant William Flye (with binoculars). ''Monitor'' on the [[James River]], Virginia, 9 July 1862.
  • Inboard plans of ''Monitor''
  • A Navy diver prepares "the spider"
  • The turret, moments after it reached the surface, secure in the "spider" lifting frame
  • Replica of ''Monitor''{{'}}s turret in the Mariners' Museum as it was recovered
1862 UNIQUE IRONCLAD; FIRST IN UNITED STATES NAVY SERVICE
USS Monitor (1862); Uss monitor; USS MONITOR; Sinking of the USS Monitor; U.S.S. Monitor; Yankee cheese box
USS Monitor was an ironclad warship built for the Union Navy during the American Civil War and completed in early 1862, the first such ship commissioned by the Navy. commissioned on 15 January 1862.

Википедия

Machine code monitor

A machine code monitor (a.k.a. machine language monitor) is software that allows a user to enter commands to view and change memory locations on a computer, with options to load and save memory contents from/to secondary storage. Some full-featured machine code monitors provide detailed control ("single-stepping") of the execution of machine language programs (much like a debugger), and include absolute-address code assembly and disassembly capabilities.

Motorola published the MIKBUG ROM monitor for the 6800 in 1973 and the BUFFALO ROM monitor for the 68HC11.

Machine code monitors became popular during the home computer era of the 1970s and 1980s and were sometimes available as resident firmware in some computers (e.g., the built-in monitors in the Commodore 128, Heathkit H89 and Zenith laptops). Often, computer manufacturers rely on their ROM-resident monitors to permit users to reconfigure their computers following installation of upgrade hardware, such as expanded main memory, additional disk drives, or different video displays.

It was not unheard of to perform all of one's programming in a monitor in lieu of a full-fledged symbolic assembler. Even after full-featured assemblers became readily available, a machine code monitor was indispensable for debugging programs. The usual technique was to set break points in the code undergoing testing (e.g., with a BRK instruction in 6502 assembly language) and start the program. When the microprocessor encountered a break point, the test program would be interrupted and control would be transferred to the machine code monitor. Typically, this would trigger a register dump and then the monitor would await programmer input. Activities at this point might include examining memory contents, patching code and/or perhaps altering the processor registers prior to restarting the test program.

The general decline of scratch-written assembly language software has made the use of a machine code monitor somewhat of a lost art. In most systems where higher-level languages are employed, debuggers are used to present a more abstract and friendly view of what is happening within a program. However, the use of machine code monitors persists, especially in the area of hobby-built computers.